home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / system / ffg202.zip / DEMO_BAT.ZIP / EXE@FILE.BAT < prev    next >
DOS Batch File  |  1995-04-01  |  431b  |  17 lines

  1. @echo off
  2. echo This example makes a list of all .EXE files, puts them in a file called "TOZIP",
  3. echo which could then be used with PKZIP to make an archive of these EXE files.
  4. echo.
  5. echo      for example:  PKZIP EXEFILES @TOZIP
  6. echo.
  7. echo where "TOZIP" is created by FFG.
  8. echo.
  9. call presskey
  10. echo on
  11. ffg *:*exe /fp > tozip
  12. echo off
  13. echo.
  14. echo Since this is a demonstration, TOZIP, will now be deleted...
  15. del tozip
  16.  
  17.